home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global gProjWinName, gStageWidth, gStageHeight, gStageRect, gStageCenter, gScreenNum, gEcardSelected, gPrevMill, gGovTicks, gCardCountry, gNextScreen, gMenuNum, oDrawStage, oWallObjs, oOrbitCenter, oOrbitNodes, oRollText, oRollPanel, oExitButton, oBackButton, oStaticGlows, oTextAnim, oMusicButton, oVolBg, oVolMeter, oLetters, iCopyLayer, iBgLayer, iBlack, iBlackMask, oQuitLogo, oQuitText, gLogoSelected
- dosSetFrontWindow(gProjWinName)
- gStageWidth = 800
- gStageHeight = 460
- gStageRect = rect(0, 0, gStageWidth, gStageHeight)
- gStageCenter = point(gStageWidth / 2, gStageHeight / 2)
- gScreenNum = integer(line 1 of field "screenNum")
- gEcardSelected = 0
- gPrevMill = the milliSeconds
- gGovTicks = 0
- gCardCountry = line 1 of field "cardCountry"
- gNextScreen = EMPTY
- gMenuNum = EMPTY
- oDrawStage = new(script("parent_drawStage"))
- oWallObjs = []
- oOrbitCenter = EMPTY
- oOrbitNodes = []
- oRollText = EMPTY
- oRollPanel = EMPTY
- oBackButton = EMPTY
- oExitButton = EMPTY
- oStaticGlows = []
- oTextAnim = []
- oMusicButton = EMPTY
- oVolBg = EMPTY
- oVolMeter = EMPTY
- oLetters = []
- create_oOrbitCenter()
- create_oOrbitNodes()
- create_oBackButton()
- create_oExitButton()
- create_oTextAnim()
- create_oVolBg()
- create_oVolMeter()
- iCopyLayer = image(gStageWidth, gStageHeight, 24)
- iCopyLayer.fill(gStageRect, rgb(0, 0, 0))
- iBgLayer = member("bg_quit").image.duplicate()
- iBlack = image(gStageWidth, gStageHeight, 24)
- iBlack.fill(gStageRect, rgb(0, 0, 0))
- iBlackMask = image(gStageWidth, gStageHeight, 24)
- iBlackMask.fill(gStageRect, rgb(0, 0, 0))
- set the mouseUpScript to "theMouseUp"
- set the keyDownScript to "theKeyDown"
- setUpAudio()
- the timeOutList = []
- oQuitLogo = EMPTY
- oQuitText = EMPTY
- gLogoSelected = 0
- create_oQuitLogo()
- create_oQuitText()
- end
-